Ravi Vishwakarma is a dedicated Software Developer with a passion for crafting efficient and innovative solutions. With a keen eye for detail and years of experience, he excels in developing robust software systems that meet client needs. His expertise spans across multiple programming languages and technologies, making him a valuable asset in any software development project.
ICSM Computer
07-May-2025In C#, you can set file attributes like read-only, hidden, or system using the
File.SetAttributesmethod along with theFileAttributesenum from theSystem.IOnamespace.Example: Set a file as read-only and hidden
How to check or modify existing attributes
Get current attributes:
Add an attribute (e.g., make it Hidden in addition to existing ones):
Remove an attribute (e.g., remove ReadOnly):
Common
FileAttributesflags:ReadOnlyHiddenSystemArchiveNormal(no other attributes set)Temporary